Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.6.23.7.4 age confidence

Release Notes

prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: Branch creation - "every 2nd week starting on the 2 week of the year before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested review from a team and jholland-livefront December 8, 2025 02:57
@bitwarden-bot bitwarden-bot changed the title [deps]: Update prettier to v3.7.3 [PM-29408] [deps]: Update prettier to v3.7.3 Dec 8, 2025
@bitwarden-bot
Copy link

Internal tracking:

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Dec 8, 2025

Deploying contributing-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: 8cdaaa1
Status: ✅  Deploy successful!
Preview URL: https://1c78660a.contributing-docs.pages.dev
Branch Preview URL: https://renovate-prettier-3-x.contributing-docs.pages.dev

View logs

@renovate renovate bot changed the title [PM-29408] [deps]: Update prettier to v3.7.3 [deps]: Update prettier to v3.7.3 Dec 8, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from ce0d118 to 6f2a00b Compare December 10, 2025 06:38
@renovate renovate bot changed the title [deps]: Update prettier to v3.7.3 [deps]: Update prettier to v3.7.4 Dec 10, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 6f2a00b to c27010a Compare December 31, 2025 16:05
@jprusik jprusik self-requested a review January 6, 2026 17:37
@jprusik jprusik self-assigned this Jan 6, 2026
@jprusik jprusik removed the request for review from jholland-livefront January 6, 2026 17:38
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from c27010a to b478108 Compare January 8, 2026 21:28
@jprusik jprusik requested a review from a team as a code owner January 14, 2026 23:33
jprusik
jprusik previously approved these changes Jan 14, 2026
@github-actions
Copy link
Contributor

github-actions bot commented Jan 14, 2026

Logo
Checkmarx One – Scan Summary & Details8d9d7c0a-9773-4dc9-83d9-14eedaea99d1

Great job! No new security vulnerabilities introduced in this pull request

bensbits91
bensbits91 previously approved these changes Jan 14, 2026
@renovate
Copy link
Contributor Author

renovate bot commented Jan 15, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@jprusik jprusik dismissed stale reviews from bensbits91 and themself via 0d88f2a January 15, 2026 15:19
@jprusik jprusik requested a review from withinfocus January 15, 2026 15:19
@jprusik jprusik enabled auto-merge (squash) January 15, 2026 15:21
@jprusik jprusik requested review from bensbits91 and jprusik January 15, 2026 15:21
jprusik
jprusik previously approved these changes Jan 15, 2026
@jprusik jprusik disabled auto-merge January 15, 2026 15:21
@jprusik jprusik enabled auto-merge (squash) January 15, 2026 15:41
bensbits91
bensbits91 previously approved these changes Jan 15, 2026
Copy link
Contributor

@withinfocus withinfocus left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't see the path and thought this was a different change.

@jprusik jprusik dismissed stale reviews from bensbits91 and themself via 8cdaaa1 January 15, 2026 16:27
@jprusik jprusik force-pushed the renovate/prettier-3.x branch from 0d88f2a to 8cdaaa1 Compare January 15, 2026 16:27
Copy link
Contributor

@withinfocus withinfocus left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. I was being confusing.

@jprusik jprusik merged commit 22bedb0 into main Jan 15, 2026
33 checks passed
@jprusik jprusik deleted the renovate/prettier-3.x branch January 15, 2026 16:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants